home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / General / GCC 1.37.1r15 / Sources / toplev.c < prev    next >
Text File  |  1990-11-15  |  60KB  |  2,331 lines

  1. /* Top level of GNU C compiler
  2.    Copyright (C) 1987, 1988, 1989 Free Software Foundation, Inc.
  3.    Copyright (C) 1989, 1990 Apple Computer, Inc.
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 1, or (at your option)
  10. any later version.
  11.  
  12. GNU CC is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU CC; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21.  
  22. /* This is the top level of cc1.
  23.    It parses command args, opens files, invokes the various passes
  24.    in the proper order, and counts the time used by each.
  25.    Error messages and low-level interface to malloc also handled here.  */
  26.  
  27. #include "config.h"
  28. #include <stdio.h>
  29. #include <signal.h>
  30. #include <setjmp.h>
  31.  
  32. #ifdef MPW
  33. /* MPW has its include files in slightly different places than Unix. */
  34. #include <types.h>
  35. #else
  36. #include <sys/types.h>
  37. #include <sys/stat.h>
  38. #endif /* MPW */
  39.  
  40. #ifdef MPW
  41. #ifdef PERFORMANCE
  42. #include <Perf.h>
  43. #endif /* PERFORMANCE */
  44. #else /* not MPW */
  45. #ifdef USG
  46. #undef FLOAT
  47. #include <sys/param.h>
  48. /* This is for hpux.  It is a real screw.  They should change hpux.  */
  49. #undef FLOAT
  50. #include <sys/times.h>
  51. #include <time.h>   /* Correct for hpux at least.  Is it good on other USG?  */
  52. #undef FFS  /* Some systems define this in param.h.  */
  53. #else
  54. #ifndef VMS
  55. #include <sys/time.h>
  56. #include <sys/resource.h>
  57. #endif
  58. #endif
  59. #endif /* MPW */
  60.  
  61. #include "input.h"
  62. #include "tree.h"
  63. #include "c-tree.h"
  64. #include "rtl.h"
  65. #include "flags.h"
  66.  
  67. extern int yydebug;
  68.  
  69. extern FILE *finput;
  70.  
  71. extern int reload_completed;
  72. extern int rtx_equal_function_value_matters;
  73.  
  74. extern void init_lex ();
  75. extern void init_decl_processing ();
  76. extern void init_tree ();
  77. extern void init_rtl ();
  78. extern void init_optabs ();
  79. extern void init_reg_sets ();
  80. extern void dump_flow_info ();
  81. extern void dump_local_alloc ();
  82.  
  83. void rest_of_decl_compilation ();
  84. void error ();
  85. void error_with_file_and_line ();
  86. void fancy_abort ();
  87. void set_target_switch ();
  88. void print_target_switch_defaults ();
  89.  
  90. /* Bit flags that specify the machine subtype we are compiling for.
  91.    Bits are tested using macros TARGET_... defined in the tm-...h file
  92.    and set by `-m...' switches.  */
  93.  
  94. int target_flags;
  95.  
  96. /* Name of current original source file (what was input to cpp).
  97.    This comes from each #-command in the actual input.  */
  98.  
  99. char *input_filename;
  100.  
  101. /* Name of top-level original source file (what was input to cpp).
  102.    This comes from the #-command at the beginning of the actual input.
  103.    If there isn't any there, then this is the cc1 input file name.  */
  104.  
  105. char *main_input_filename;
  106.  
  107. /* Current line number in real source file.  */
  108.  
  109. int lineno;
  110.  
  111. /* Stack of currently pending input files.  */
  112.  
  113. struct file_stack *input_file_stack;
  114.  
  115. /* Incremented on each change to input_file_stack.  */
  116. int input_file_stack_tick;
  117.  
  118. /* FUNCTION_DECL for function now being parsed or compiled.  */
  119.  
  120. extern tree current_function_decl;
  121.  
  122. /* Name to use as base of names for dump output files.  */
  123.  
  124. char *dump_base_name;
  125.  
  126. /* Flags saying which kinds of debugging dump have been requested.  */
  127.  
  128. int rtl_dump = 0;
  129. int rtl_dump_and_exit = 0;
  130. int jump_opt_dump = 0;
  131. int cse_dump = 0;
  132. int loop_dump = 0;
  133. int flow_dump = 0;
  134. int combine_dump = 0;
  135. int local_reg_dump = 0;
  136. int global_reg_dump = 0;
  137. int jump2_opt_dump = 0;
  138. int dbr_sched_dump = 0;
  139.  
  140. /* 1 => write gdb debugging output (using symout.c).  -g
  141.    2 => write dbx debugging output (using dbxout.c).  -G
  142.    3 => write sdb debugging output (using sdbout.c).  -g.  */
  143.  
  144. enum debugger write_symbols = NO_DEBUG;
  145.  
  146. /* Nonzero means can use our own extensions to DBX format.
  147.    Relevant only with write_symbols == DBX_DEBUG.  */
  148.  
  149. int use_gdb_dbx_extensions;
  150.  
  151. /* Nonzero means do optimizations.  -opt.  */
  152.  
  153. int optimize = 0;
  154.  
  155. /* Nonzero means `char' should be signed.  */
  156.  
  157. int flag_signed_char;
  158.  
  159. /* Nonzero means give an enum type only as many bytes as it needs.  */
  160.  
  161. int flag_short_enums;
  162.  
  163. /* Nonzero for -fcaller-saves: allocate values in regs that need to
  164.    be saved across function calls, if that produces overall better code.
  165.    Optional now, so people can test it.  */
  166.  
  167. #ifdef DEFAULT_CALLER_SAVES
  168. int flag_caller_saves = 1;
  169. #else
  170. int flag_caller_saves = 0;
  171. #endif
  172.  
  173. /* Nonzero for -fpcc-struct-return: return values the same way PCC does.  */
  174.  
  175. int flag_pcc_struct_return = 0;
  176.  
  177. /* Nonzero for -fforce-mem: load memory value into a register
  178.    before arithmetic on it.  This makes better cse but slower compilation.  */
  179.  
  180. int flag_force_mem = 0;
  181.  
  182. /* Nonzero for -fforce-addr: load memory address into a register before
  183.    reference to memory.  This makes better cse but slower compilation.  */
  184.  
  185. int flag_force_addr = 0;
  186.  
  187. /* Nonzero for -fdefer-pop: don't pop args after each function call;
  188.    instead save them up to pop many calls' args with one insns.  */
  189.  
  190. int flag_defer_pop = 1;
  191.  
  192. /* Nonzero for -ffloat-store: don't allocate floats and doubles
  193.    in extended-precision registers.  */
  194.  
  195. int flag_float_store = 0;
  196.  
  197. /* Nonzero for -fcombine-regs:
  198.    allow instruction combiner to combine an insn
  199.    that just copies one reg to another.  */
  200.  
  201. int flag_combine_regs = 0;
  202.  
  203. /* Nonzero enables strength-reduction in loop.c.  */
  204.  
  205. int flag_strength_reduce = 0;
  206.  
  207. /* Nonzero for -fwritable-strings:
  208.    store string constants in data segmentand don't uniquize them.  */
  209.  
  210. int flag_writable_strings = 0;
  211.  
  212. /* Nonzero means don't put addresses of constant functions in registers.
  213.    Used for compiling the Unix kernel, where strange substitutions are
  214.    done on the assembly output.  */
  215.  
  216. int flag_no_function_cse = 0;
  217.  
  218. /* Nonzero for -fomit-frame-pointer:
  219.    don't make a frame pointer in simple functions that don't require one.  */
  220.  
  221. int flag_omit_frame_pointer = 0;
  222.  
  223. /* Nonzero to inhibit use of define_optimization peephole opts.  */
  224.  
  225. int flag_no_peephole = 0;
  226.  
  227. /* Nonzero means all references through pointers are volatile.  */
  228.  
  229. int flag_volatile;
  230.  
  231. /* Nonzero means just do syntax checking; don't output anything.  */
  232.  
  233. int flag_syntax_only = 0;
  234.  
  235. /* Nonzero means do stupid register allocation.  -noreg.
  236.    This and `optimize' are controlled by different switches in cc1,
  237.    but normally cc controls them both with the -O switch.  */
  238.  
  239. int obey_regdecls = 0;
  240.  
  241. /* Don't print functions as they are compiled and don't print
  242.    times taken by the various passes.  -quiet.  */
  243.  
  244. int quiet_flag = 0;
  245.  
  246. /* Don't print warning messages.  -w.  */
  247.  
  248. int inhibit_warnings = 0;
  249.  
  250. /* Do print extra warnings (such as for uninitialized variables).  -W.  */
  251.  
  252. int extra_warnings = 0;
  253.  
  254. /* Nonzero to warn about unused local variables.  */
  255.  
  256. int warn_unused;
  257.  
  258. /* Nonzero means warn about all declarations which shadow others.   */
  259.  
  260. int warn_shadow;
  261.  
  262. /* Warn if a switch on an enum fails to have a case for every enum value.  */
  263.  
  264. int warn_switch;
  265.  
  266. /* Nonzero means warn about any identifiers that match in the first N
  267.    characters.  The value N is in `id_clash_len'.  */
  268.  
  269. int warn_id_clash;
  270. int id_clash_len;
  271.  
  272. /* Number of error messages and warning messages so far.  */
  273.  
  274. int errorcount = 0;
  275. int warningcount = 0;
  276. int sorrycount = 0;
  277.  
  278. /* Name of program invoked, sans directories.  */
  279.  
  280. char *progname;
  281.  
  282. /* Nonzero if generating code to do profiling.  */
  283.  
  284. int profile_flag = 0;
  285.  
  286. /* Nonzero if generating code to do profiling on a line-by-line basis.  */
  287.  
  288. int profile_block_flag;
  289.  
  290. /* Nonzero for -pedantic switch: warn about anything
  291.    that standard spec forbids.  */
  292.  
  293. int pedantic = 0;
  294.  
  295. /* Nonzero for -finline-functions: ok to inline functions that look like
  296.    good inline candidates.  */
  297.  
  298. int flag_inline_functions;
  299.  
  300. /* Nonzero for -fkeep-inline-functions: even if we make a function
  301.    go inline everywhere, keep its defintion around for debugging
  302.    purposes.  */
  303.  
  304. int flag_keep_inline_functions;
  305.  
  306. /* Nonzero means make the text shared if supported.  */
  307.  
  308. int flag_shared_data;
  309.  
  310. /* Nonzero means schedule into delayed branch slots if supported.  */
  311.  
  312. int flag_delayed_branch;
  313.  
  314. /* Copy of arguments to main.  */
  315. int save_argc;
  316. char **save_argv;
  317.  
  318. /* Name for output file of assembly code, specified with -o.  */
  319.  
  320. char *asm_file_name;
  321.  
  322. /* Name for output file of GDB symbol segment, specified with -symout.  */
  323.  
  324. char *sym_file_name;
  325.  
  326. #ifdef APPLE_C
  327. /* Segment name for Macintosh. */
  328.  
  329. char *segment_name = "Main";
  330.  
  331. /* Flag indicating whether tracing is to happen. */
  332.  
  333. int generate_trace_calls = 0;
  334.  
  335. /* Flag indicating whether #pragma trace affects tracing. */
  336.  
  337. int ignore_trace_pragmas = 0;
  338. #endif /* APPLE_C */
  339.  
  340. #ifdef MPW
  341. #ifdef PERFORMANCE
  342. TP2PerfGlobals ThePGlobals;
  343. #endif /* PERFORMANCE */
  344. #endif /* MPW */
  345.  
  346. /* Table of language-independent -f options.
  347.    STRING is the option name.  VARIABLE is the address of the variable.
  348.    ON_VALUE is the value to store in VARIABLE
  349.     if `-fSTRING' is seen as an option.
  350.    (If `-fno-STRING' is seen as an option, the opposite value is stored.)  */
  351.  
  352. struct { char *string; int *variable; int on_value;} f_options[] =
  353. {
  354.   {"float-store", &flag_float_store, 1},
  355.   {"volatile", &flag_volatile, 1},
  356.   {"defer-pop", &flag_defer_pop, 1},
  357.   {"omit-frame-pointer", &flag_omit_frame_pointer, 1},
  358.   {"strength-reduce", &flag_strength_reduce, 1},
  359.   {"writable-strings", &flag_writable_strings, 1},
  360.   {"peephole", &flag_no_peephole, 0},
  361.   {"force-mem", &flag_force_mem, 1},
  362.   {"force-addr", &flag_force_addr, 1},
  363.   {"combine-regs", &flag_combine_regs, 1},
  364.   {"function-cse", &flag_no_function_cse, 0},
  365.   {"inline-functions", &flag_inline_functions, 1},
  366.   {"keep-inline-functions", &flag_keep_inline_functions, 1},
  367.   {"syntax-only", &flag_syntax_only, 1},
  368.   {"shared-data", &flag_shared_data, 1},
  369.   {"caller-saves", &flag_caller_saves, 1},
  370.   {"pcc-struct-return", &flag_pcc_struct_return, 1},
  371.   {"delayed-branch", &flag_delayed_branch, 1}
  372. };
  373.  
  374. /* Output files for assembler code (real compiler output)
  375.    and debugging dumps.  */
  376.  
  377. FILE *asm_out_file;
  378. FILE *rtl_dump_file;
  379. FILE *jump_opt_dump_file;
  380. FILE *cse_dump_file;
  381. FILE *loop_dump_file;
  382. FILE *flow_dump_file;
  383. FILE *combine_dump_file;
  384. FILE *local_reg_dump_file;
  385. FILE *global_reg_dump_file;
  386. FILE *jump2_opt_dump_file;
  387. FILE *dbr_sched_dump_file;
  388.  
  389. /* Time accumulators, to count the total time spent in various passes.  */
  390.  
  391. int parse_time;
  392. int varconst_time;
  393. int integration_time;
  394. int jump_time;
  395. int cse_time;
  396. int loop_time;
  397. int flow_time;
  398. int combine_time;
  399. int local_alloc_time;
  400. int global_alloc_time;
  401. int dbr_sched_time;
  402. int final_time;
  403. int symout_time;
  404. int dump_time;
  405.  
  406. /* Return time used so far, in microseconds.  */
  407.  
  408. int
  409. gettime ()
  410. {
  411. #ifdef MPW
  412.   /* don't need a structure here */
  413.  
  414. #else
  415. #ifdef USG
  416.   struct tms tms;
  417. #else
  418. #ifndef VMS
  419.   struct rusage rusage;
  420. #else /* VMS */
  421.   struct
  422.     {
  423.       int proc_user_time;
  424.       int proc_system_time;
  425.       int child_user_time;
  426.       int child_system_time;
  427.     } vms_times;
  428. #endif
  429. #endif
  430. #endif /* MPW */
  431.  
  432.   if (quiet_flag)
  433.     return 0;
  434.  
  435. #ifdef MPW
  436.   /* MPW's returns 1/60 sec ticks, so we do easy conversion to microseconds. */
  437.   return (clock() * (1000000 / 60));
  438. #else
  439. #ifdef USG
  440.   times (&tms);
  441.   return (tms.tms_utime + tms.tms_stime) * (1000000 / HZ);
  442. #else
  443. #ifndef VMS
  444.   getrusage (0, &rusage);
  445.   return (rusage.ru_utime.tv_sec * 1000000 + rusage.ru_utime.tv_usec
  446.       + rusage.ru_stime.tv_sec * 1000000 + rusage.ru_stime.tv_usec);
  447. #else /* VMS */
  448.   times (&vms_times);
  449.   return (vms_times.proc_user_time + vms_times.proc_system_time) * 10000;
  450. #endif
  451. #endif
  452. #endif /* MPW */
  453. }
  454.  
  455. #define TIMEVAR(VAR, BODY)    \
  456. do { int otime = gettime (); BODY; VAR += gettime () - otime; } while (0)
  457.  
  458. void
  459. print_time (str, total)
  460.      char *str;
  461.      int total;
  462. {
  463.   fprintf (stderr,
  464.        "time in %s: %d.%06d\n",
  465.        str, total / 1000000, total % 1000000);
  466. }
  467.  
  468. /* Count an error or warning.  Return 1 if the message should be printed.  */
  469.  
  470. int
  471. count_error (warningp)
  472.      int warningp;
  473. {
  474.   if (warningp && inhibit_warnings)
  475.     return 0;
  476.  
  477.   if (warningp)
  478.     warningcount++;
  479.   else
  480.     errorcount++;
  481.  
  482.   return 1;
  483. }
  484.  
  485. /* Print a fatal error message.  NAME is the text.
  486.    Also include a system error message based on `errno'.  */
  487.  
  488. void
  489. pfatal_with_name (name)
  490.      char *name;
  491. {
  492.   fprintf (stderr, "%s: ", progname);
  493.   perror (name);
  494.   exit (35);
  495. }
  496.  
  497. void
  498. fatal_io_error (name)
  499.      char *name;
  500. {
  501.   fprintf (stderr, "%s: %s: I/O error\n", progname, name);
  502.   exit (35);
  503. }
  504.  
  505. void
  506. fatal (s, v)
  507.      char *s;
  508.      int v;
  509. {
  510.   error (s, v);
  511.   exit (34);
  512. }
  513.  
  514. /* Called from insn-extract to give a better error message when we
  515.    don't have an insn to match what we are looking for, rather
  516.    than just calling abort().  */
  517.  
  518. void
  519. fatal_insn_not_found (insn)
  520.      rtx insn;
  521. {
  522.   error ("The following insn was not recognizable:", 0);
  523.   debug_rtx (insn);
  524.   abort ();
  525. }
  526.  
  527. static int need_error_newline;
  528.  
  529. /* Function of last error message;
  530.    more generally, function such that if next error message is in it
  531.    then we don't have to mention the function name.  */
  532. static tree last_error_function = NULL;
  533.  
  534. /* Used to detect when input_file_stack has changed since last described.  */
  535. static int last_error_tick;
  536.  
  537. /* Called when the start of a function definition is parsed,
  538.    this function prints on stderr the name of the function.  */
  539.  
  540. void
  541. announce_function (decl)
  542.      tree decl;
  543. {
  544.   if (! quiet_flag)
  545.     {
  546.       fprintf (stderr, " %s", DECL_PRINT_NAME (decl));
  547. #ifdef MPW
  548.       /* Newline after function name makes us look more like MPW C. */
  549.       fprintf (stderr, "\n");
  550. #endif /* MPW */
  551.       fflush (stderr);
  552.       need_error_newline = 1;
  553.       last_error_function = current_function_decl;
  554.     }
  555. }
  556.  
  557. /* Prints out, if necessary, the name of the current function
  558.    which caused an error.  Called from all error and warning functions.  */
  559.  
  560. void
  561. report_error_function (file)
  562.      char *file;
  563. {
  564.   struct file_stack *p;
  565.  
  566.   if (need_error_newline)
  567.     {
  568.       fprintf (stderr, "\n");
  569.       need_error_newline = 0;
  570.     }
  571.  
  572.   if (last_error_function != current_function_decl)
  573.     {
  574.       if (file)
  575.     fprintf (stderr, "%s: ", file);
  576.  
  577.       if (current_function_decl == NULL)
  578.     fprintf (stderr, "At top level:\n");
  579.       else if (TREE_CODE (TREE_TYPE (current_function_decl)) == METHOD_TYPE)
  580.     fprintf (stderr, "In method %s:\n",
  581.          DECL_PRINT_NAME (current_function_decl));
  582.       else
  583.     fprintf (stderr, "In function %s:\n",
  584.          DECL_PRINT_NAME (current_function_decl));
  585.  
  586.       last_error_function = current_function_decl;
  587.     }
  588.   if (input_file_stack && input_file_stack->next != 0
  589.       && input_file_stack_tick != last_error_tick)
  590.     {
  591.       fprintf (stderr, "In file included");
  592.       for (p = input_file_stack->next; p; p = p->next)
  593.     {
  594.       fprintf (stderr, " from %s:%d", p->name, p->line);
  595.       if (p->next)
  596.         fprintf (stderr, ",");
  597.     }
  598.       fprintf (stderr, ":\n");
  599.       last_error_tick = input_file_stack_tick;
  600.     }
  601. }
  602.  
  603. /* Report an error at the current line number.
  604.    S and V are a string and an arg for `printf'.  */
  605.  
  606. void
  607. error (s, v, v2)
  608.      char *s;
  609.      int v;            /* @@also used as pointer */
  610.      int v2;            /* @@also used as pointer */
  611. {
  612.   error_with_file_and_line (input_filename, lineno, s, v, v2);
  613. }
  614.  
  615. /* Report an error at line LINE of file FILE.
  616.    S and V are a string and an arg for `printf'.  */
  617.  
  618. void
  619. error_with_file_and_line (file, line, s, v, v2)
  620.      char *file;
  621.      int line;
  622.      char *s;
  623.      int v;
  624.      int v2;
  625. {
  626.   count_error (0);
  627.  
  628.   report_error_function (file);
  629.  
  630.   if (file)
  631. #ifdef MPW
  632.     /* Print file and line so that they're valid MPW commands. */
  633.     fprintf (stderr, "File \"%s\"; Line %d\t# ", file, line);
  634. #else
  635.     fprintf (stderr, "%s:%d: ", file, line);
  636. #endif /* MPW */
  637.   else
  638.     fprintf (stderr, "%s: ", progname);
  639.   fprintf (stderr, s, v, v2);
  640.   fprintf (stderr, "\n");
  641. }
  642.  
  643. /* Report an error at the declaration DECL.
  644.    S and V are a string and an arg which uses %s to substitute the declaration name.  */
  645.  
  646. void
  647. error_with_decl (decl, s, v)
  648.      tree decl;
  649.      char *s;
  650.      int v;
  651. {
  652.   count_error (0);
  653.  
  654.   report_error_function (DECL_SOURCE_FILE (decl));
  655.  
  656. #ifdef MPW
  657.   /* Print file and line so that they're valid MPW commands. */
  658.   fprintf (stderr, "File \"%s\"; Line %d\t# ",
  659. #else
  660.   fprintf (stderr, "%s:%d: ",
  661. #endif /* MPW */
  662.        DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
  663.  
  664.   if (DECL_PRINT_NAME (decl))
  665.     fprintf (stderr, s, DECL_PRINT_NAME (decl), v);
  666.   else if (DECL_NAME (decl))
  667.     fprintf (stderr, s, IDENTIFIER_POINTER (DECL_NAME (decl)), v);
  668.   else
  669.     fprintf (stderr, s, "((anonymous))", v);
  670.   fprintf (stderr, "\n");
  671. }
  672.  
  673. /* Report an error at the line number of the insn INSN.
  674.    S and V are a string and an arg for `printf'.
  675.    This is used only when INSN is an `asm' with operands,
  676.    and each ASM_OPERANDS records its own source file and line.  */
  677.  
  678. void
  679. error_for_asm (insn, s, v, v2)
  680.      rtx insn;
  681.      char *s;
  682.      int v;            /* @@also used as pointer */
  683.      int v2;            /* @@also used as pointer */
  684. {
  685.   rtx temp;
  686.   char *filename;
  687.   int line;
  688.   rtx body = PATTERN (insn);
  689.   rtx asmop;
  690.  
  691.   /* Find the (or one of the) ASM_OPERANDS in the insn.  */
  692.   if (GET_CODE (body) == SET && GET_CODE (SET_SRC (body)) == ASM_OPERANDS)
  693.     asmop = SET_SRC (body);
  694.   else if (GET_CODE (body) == ASM_OPERANDS)
  695.     asmop = body;
  696.   else if (GET_CODE (body) == PARALLEL
  697.        && GET_CODE (XVECEXP (body, 0, 0)) == SET)
  698.     asmop = SET_SRC (XVECEXP (body, 0, 0));
  699.   else if (GET_CODE (body) == PARALLEL
  700.        && GET_CODE (XVECEXP (body, 0, 0)) == ASM_OPERANDS)
  701.     asmop = XVECEXP (body, 0, 0);
  702.  
  703.   filename = ASM_OPERANDS_SOURCE_FILE (asmop);
  704.   line = ASM_OPERANDS_SOURCE_LINE (asmop);
  705.  
  706.   error_with_file_and_line (filename, line, s, v, v2);
  707. }
  708.  
  709. /* Report a warning at line LINE.
  710.    S and V are a string and an arg for `printf'.  */
  711.  
  712. void
  713. warning_with_file_and_line (file, line, s, v, v2)
  714.      char *file;
  715.      int line;
  716.      char *s;
  717.      int v;
  718.      int v2;
  719. {
  720.   if (count_error (1) == 0)
  721.     return;
  722.  
  723.   report_error_function (file);
  724.  
  725.   if (file)
  726. #ifdef MPW
  727.     /* Print file and line so that they're valid MPW commands. */
  728.     fprintf (stderr, "File \"%s\"; Line %d\t# ", file, line);
  729. #else
  730.     fprintf (stderr, "%s:%d: ", file, line);
  731. #endif /* MPW */
  732.   else
  733.     fprintf (stderr, "%s: ", progname);
  734.  
  735.   fprintf (stderr, "warning: ");
  736.   fprintf (stderr, s, v, v2);
  737.   fprintf (stderr, "\n");
  738. }
  739.  
  740. /* Report a warning at the current line number.
  741.    S and V are a string and an arg for `printf'.  */
  742.  
  743. void
  744. warning (s, v, v2)
  745.      char *s;
  746.      int v;            /* @@also used as pointer */
  747.      int v2;
  748. {
  749.   warning_with_file_and_line (input_filename, lineno, s, v, v2);
  750. }
  751.  
  752. /* Report a warning at the declaration DECL.
  753.    S is string which uses %s to substitute the declaration name.
  754.    V is a second parameter that S can refer to.  */
  755.  
  756. void
  757. warning_with_decl (decl, s, v)
  758.      tree decl;
  759.      char *s;
  760.      int v;
  761. {
  762.   if (count_error (1) == 0)
  763.     return;
  764.  
  765.   report_error_function (DECL_SOURCE_FILE (decl));
  766.  
  767. #ifdef MPW
  768.   /* Print file and line so that they're valid MPW commands. */
  769.   fprintf (stderr, "File \"%s\"; Line %d\t# ",
  770. #else
  771.   fprintf (stderr, "%s:%d: ",
  772. #endif /* MPW */
  773.        DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl));
  774.  
  775.   fprintf (stderr, "warning: ");
  776.   if (DECL_PRINT_NAME (decl))
  777.     fprintf (stderr, s, DECL_PRINT_NAME (decl), v);
  778.   else if (DECL_NAME (decl))
  779.     fprintf (stderr, s, IDENTIFIER_POINTER (DECL_NAME (decl)), v);
  780.   else
  781.     fprintf (stderr, s, "((anonymous))", v);
  782.   fprintf (stderr, "\n");
  783. }
  784.  
  785. /* Apologize for not implementing some feature.
  786.    S, V, and V2 are a string and args for `printf'.  */
  787.  
  788. void
  789. sorry (s, v, v2)
  790.      char *s;
  791.      int v, v2;
  792. {
  793.   sorrycount++;
  794.   if (input_filename)
  795. #ifdef MPW
  796.     /* Print file and line so that they're valid MPW commands. */
  797.     fprintf (stderr, "File \"%s\"; Line %d\t# ", input_filename, lineno);
  798. #else
  799.     fprintf (stderr, "%s:%d: ", input_filename, lineno);
  800. #endif /* MPW */
  801.   else
  802.     fprintf (stderr, "%s: ", progname);
  803.  
  804.   fprintf (stderr, "sorry, not implemented: ");
  805.   fprintf (stderr, s, v, v2);
  806.   fprintf (stderr, "\n");
  807. }
  808.  
  809. /* Apologize for not implementing some feature, then quit.
  810.    S, V, and V2 are a string and args for `printf'.  */
  811.  
  812. void
  813. really_sorry (s, v, v2)
  814.      char *s;
  815.      int v, v2;
  816. {
  817.   if (input_filename)
  818. #ifdef MPW
  819.     /* Print file and line so that they're valid MPW commands. */
  820.     fprintf (stderr, "File \"%s\"; Line %d\t# ", input_filename, lineno);
  821. #else
  822.     fprintf (stderr, "%s:%d: ", input_filename, lineno);
  823. #endif /* MPW */
  824.   else
  825.     fprintf (stderr, "c++: ");
  826.  
  827.   fprintf (stderr, "sorry, not implemented: ");
  828.   fprintf (stderr, s, v, v2);
  829.   fatal (" (fatal)\n");
  830. }
  831.  
  832. /* More 'friendly' abort that prints the line and file.
  833.    config.h can #define abort fancy_abort if you like that sort of thing.  */
  834.  
  835. void
  836. fancy_abort ()
  837. {
  838. #ifdef MPW
  839.   /* Make sure no output still buffered up, then zap into Macsbug. */
  840.   printf("Ack!\n");
  841.   fflush(stdout);
  842.   fflush(stderr);
  843.   Debugger();
  844.   /* "g" in Macsbug will then cause a regular error exit. */
  845.   exit (FATAL_EXIT_CODE);
  846. #else
  847.   fatal ("Internal gcc abort.");
  848. #endif /* MPW */
  849. }
  850.  
  851. /* When `malloc.c' is compiled with `rcheck' defined,
  852.    it calls this function to report clobberage.  */
  853.  
  854. void
  855. botch (s)
  856. {
  857.   abort ();
  858. }
  859.  
  860. /* Same as `malloc' but report error if no memory available.  */
  861.  
  862. #ifdef MPW
  863. /* Some global vars for memory usage statistics collection. */
  864. int totmalloc = 0;
  865. extern int totalloca;
  866. int totrealloc = 0;
  867. int totfree = 0;
  868. #endif /* MPW */
  869.  
  870. int
  871. xmalloc (size)
  872.      unsigned size;
  873. {
  874.   register int value = (int) malloc (size);
  875. #ifdef MPW
  876.   /* Count this against the total malloc usage. */
  877.   totmalloc += size;
  878. #endif /* MPW */
  879.   if (value == 0)
  880. #ifdef MPW
  881.     /* Editorialize. */
  882.     fatal ("Virtual (hah!) memory exhausted.");
  883. #else
  884.     fatal ("Virtual memory exhausted.");
  885. #endif /* MPW */
  886.   return value;
  887. }
  888.  
  889. /* Same as `realloc' but report error if no memory available.  */
  890.  
  891. int
  892. xrealloc (ptr, size)
  893.      char *ptr;
  894.      int size;
  895. {
  896.   int result = realloc (ptr, size);
  897. #ifdef MPW
  898.   /* Count this against the total realloc usage. */
  899.   totrealloc += size;
  900. #endif /* MPW */
  901.   if (!result)
  902. #ifdef MPW
  903.     /* Editorialize. */
  904.     fatal ("Virtual (hah!) memory exhausted.");
  905. #else
  906.     fatal ("Virtual memory exhausted.");
  907. #endif /* MPW */
  908.   return result;
  909. }
  910.  
  911. /* Return the logarithm of X, base 2, considering X unsigned,
  912.    if X is a power of 2.  Otherwise, returns -1.  */
  913.  
  914. int
  915. exact_log2 (x)
  916.      register unsigned int x;
  917. {
  918.   register int log = 0;
  919.   for (log = 0; log < HOST_BITS_PER_INT; log++)
  920.     if (x == (1 << log))
  921.       return log;
  922.   return -1;
  923. }
  924.  
  925. /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
  926.    If X is 0, return -1.  */
  927.  
  928. int
  929. floor_log2 (x)
  930.      register unsigned int x;
  931. {
  932.   register int log = 0;
  933.   for (log = 0; log < HOST_BITS_PER_INT; log++)
  934.     if ((x & ((-1) << log)) == 0)
  935.       return log - 1;
  936.   return HOST_BITS_PER_INT - 1;
  937. }
  938.  
  939. int float_handled;
  940. jmp_buf float_handler;
  941.  
  942. /* Specify where to longjmp to when a floating arithmetic error happens.
  943.    If HANDLER is 0, it means don't handle the errors any more.  */
  944.  
  945. void
  946. set_float_handler (handler)
  947.      jmp_buf handler;
  948. {
  949.   float_handled = (handler != 0);
  950.   if (handler)
  951.     bcopy (handler, float_handler, sizeof (float_handler));
  952. }
  953.  
  954. /* Signals actually come here.  */
  955.  
  956. static void
  957. float_signal ()
  958. {
  959.   if (float_handled == 0)
  960.     abort ();
  961.   float_handled = 0;
  962.   longjmp (float_handler, 1);
  963. }
  964.  
  965. /* Handler for SIGPIPE.  */
  966.  
  967. static void
  968. pipe_closed ()
  969. {
  970.   fatal ("output pipe has been closed");
  971. }
  972.  
  973. /* Compile an entire file of output from cpp, named NAME.
  974.    Write a file of assembly output and various debugging dumps.  */
  975.  
  976. static void
  977. compile_file (name)
  978.      char *name;
  979. {
  980.   tree globals;
  981.   int start_time;
  982.   int dump_base_name_length;
  983.  
  984.   int name_specified = name != 0;
  985.  
  986.   if (dump_base_name == 0)
  987.     dump_base_name = name ? name : "gccdump";
  988.   dump_base_name_length = strlen (dump_base_name);
  989.  
  990.   parse_time = 0;
  991.   varconst_time = 0;
  992.   integration_time = 0;
  993.   jump_time = 0;
  994.   cse_time = 0;
  995.   loop_time = 0;
  996.   flow_time = 0;
  997.   combine_time = 0;
  998.   local_alloc_time = 0;
  999.   global_alloc_time = 0;
  1000.   dbr_sched_time = 0;
  1001.   final_time = 0;
  1002.   symout_time = 0;
  1003.   dump_time = 0;
  1004.  
  1005.   /* Open input file.  */
  1006.  
  1007.   if (name == 0 || !strcmp (name, "-"))
  1008.     {
  1009.       finput = stdin;
  1010.       name = "stdin";
  1011.     }
  1012.   else
  1013.     finput = fopen (name, "r");
  1014.   if (finput == 0)
  1015.     pfatal_with_name (name);
  1016.  
  1017.   /* Initialize data in various passes.  */
  1018.  
  1019.   init_tree ();
  1020.   init_lex ();
  1021.   init_rtl ();
  1022.   init_emit_once ();
  1023.   init_decl_processing ();
  1024.   init_optabs ();
  1025.  
  1026.   /* If rtl dump desired, open the output file.  */
  1027.   if (rtl_dump)
  1028.     {
  1029.       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
  1030.       strcpy (dumpname, dump_base_name);
  1031.       strcat (dumpname, ".rtl");
  1032.       rtl_dump_file = fopen (dumpname, "w");
  1033.       if (rtl_dump_file == 0)
  1034.     pfatal_with_name (dumpname);
  1035.     }
  1036.  
  1037.   /* If jump_opt dump desired, open the output file.  */
  1038.   if (jump_opt_dump)
  1039.     {
  1040.       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
  1041.       strcpy (dumpname, dump_base_name);
  1042.       strcat (dumpname, ".jump");
  1043.       jump_opt_dump_file = fopen (dumpname, "w");
  1044.       if (jump_opt_dump_file == 0)
  1045.     pfatal_with_name (dumpname);
  1046.     }
  1047.  
  1048.   /* If cse dump desired, open the output file.  */
  1049.   if (cse_dump)
  1050.     {
  1051.       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
  1052.       strcpy (dumpname, dump_base_name);
  1053.       strcat (dumpname, ".cse");
  1054.       cse_dump_file = fopen (dumpname, "w");
  1055.       if (cse_dump_file == 0)
  1056.     pfatal_with_name (dumpname);
  1057.     }
  1058.  
  1059.   /* If loop dump desired, open the output file.  */
  1060.   if (loop_dump)
  1061.     {
  1062.       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
  1063.       strcpy (dumpname, dump_base_name);
  1064.       strcat (dumpname, ".loop");
  1065.       loop_dump_file = fopen (dumpname, "w");
  1066.       if (loop_dump_file == 0)
  1067.     pfatal_with_name (dumpname);
  1068.     }
  1069.  
  1070.   /* If flow dump desired, open the output file.  */
  1071.   if (flow_dump)
  1072.     {
  1073.       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
  1074.       strcpy (dumpname, dump_base_name);
  1075.       strcat (dumpname, ".flow");
  1076.       flow_dump_file = fopen (dumpname, "w");
  1077.       if (flow_dump_file == 0)
  1078.     pfatal_with_name (dumpname);
  1079.     }
  1080.  
  1081.   /* If combine dump desired, open the output file.  */
  1082.   if (combine_dump)
  1083.     {
  1084.       register char *dumpname = (char *) xmalloc (dump_base_name_length + 10);
  1085.       strcpy (dumpname, dump_base_name);
  1086.       strcat (dumpname, ".combine");
  1087.       combine_dump_file = fopen (dumpname, "w");
  1088.       if (combine_dump_file == 0)
  1089.     pfatal_with_name (dumpname);
  1090.     }
  1091.  
  1092.   /* If local_reg dump desired, open the output file.  */
  1093.   if (local_reg_dump)
  1094.     {
  1095.       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
  1096.       strcpy (dumpname, dump_base_name);
  1097.       strcat (dumpname, ".lreg");
  1098.       local_reg_dump_file = fopen (dumpname, "w");
  1099.       if (local_reg_dump_file == 0)
  1100.     pfatal_with_name (dumpname);
  1101.     }
  1102.  
  1103.   /* If global_reg dump desired, open the output file.  */
  1104.   if (global_reg_dump)
  1105.     {
  1106.       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
  1107.       strcpy (dumpname, dump_base_name);
  1108.       strcat (dumpname, ".greg");
  1109.       global_reg_dump_file = fopen (dumpname, "w");
  1110.       if (global_reg_dump_file == 0)
  1111.     pfatal_with_name (dumpname);
  1112.     }
  1113.  
  1114.   /* If jump2_opt dump desired, open the output file.  */
  1115.   if (jump2_opt_dump)
  1116.     {
  1117.       register char *dumpname = (char *) xmalloc (dump_base_name_length + 7);
  1118.       strcpy (dumpname, dump_base_name);
  1119.       strcat (dumpname, ".jump2");
  1120.       jump2_opt_dump_file = fopen (dumpname, "w");
  1121.       if (jump2_opt_dump_file == 0)
  1122.     pfatal_with_name (dumpname);
  1123.     }
  1124.  
  1125.   /* If dbr_sched dump desired, open the output file.  */
  1126.   if (dbr_sched_dump)
  1127.     {
  1128.       register char *dumpname = (char *) xmalloc (dump_base_name_length + 7);
  1129.       strcpy (dumpname, dump_base_name);
  1130.       strcat (dumpname, ".dbr");
  1131.       dbr_sched_dump_file = fopen (dumpname, "w");
  1132.       if (dbr_sched_dump_file == 0)
  1133.     pfatal_with_name (dumpname);
  1134.     }
  1135.  
  1136.   /* Open assembler code output file.  */
  1137.  
  1138.   if (! name_specified && asm_file_name == 0)
  1139.     asm_out_file = stdout;
  1140.   else
  1141.     {
  1142.       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
  1143.       int len = strlen (dump_base_name);
  1144.       strcpy (dumpname, dump_base_name);
  1145. #ifdef MPW
  1146.       /* To make a MPW assembly language name, just add a ".a" */
  1147.       /* (This really ought to be defined in tm.h ...) */
  1148.       strcat (dumpname, ".a");
  1149. #else
  1150.       if (len > 2 && ! strcmp (".c", dumpname + len - 2))
  1151.     dumpname[len - 2] = 0;
  1152.       else if (len > 2 && ! strcmp (".i", dumpname + len - 2))
  1153.     dumpname[len - 2] = 0;
  1154.       else if (len > 3 && ! strcmp (".co", dumpname + len - 3))
  1155.     dumpname[len - 3] = 0;
  1156.       strcat (dumpname, ".s");
  1157. #endif /* MPW */
  1158.       if (asm_file_name == 0)
  1159.     {
  1160.       asm_file_name = (char *) malloc (strlen (dumpname) + 1);
  1161.       strcpy (asm_file_name, dumpname);
  1162.     }
  1163.       if (!strcmp (asm_file_name, "-"))
  1164.     asm_out_file = stdout;
  1165.       else
  1166.     asm_out_file = fopen (asm_file_name, "w");
  1167.       if (asm_out_file == 0)
  1168.     pfatal_with_name (asm_file_name);
  1169.     }
  1170.  
  1171.   input_filename = name;
  1172.  
  1173.   /* the beginning of the file is a new line; check for # */
  1174.   /* With luck, we discover the real source file's name from that
  1175.      and put it in input_filename.  */
  1176.   ungetc (check_newline (), finput);
  1177.  
  1178.   /* If the input doesn't start with a #line, use the input name
  1179.      as the official input file name.  */
  1180.   if (main_input_filename == 0)
  1181.     main_input_filename = name;
  1182.  
  1183.   /* Put an entry on the input file stack for the main input file.  */
  1184.   input_file_stack
  1185.     = (struct file_stack *) xmalloc (sizeof (struct file_stack));
  1186.   input_file_stack->next = 0;
  1187.   input_file_stack->name = input_filename;
  1188.  
  1189.   ASM_FILE_START (asm_out_file);
  1190. #ifdef APPLE_HAX
  1191.   /* If the name import machinery is being used, it must be initialized. */
  1192.   init_import_for_file();
  1193. #endif /* APPLE_HAX */
  1194.  
  1195.   /* Output something to inform GDB that this compilation was by GCC.  */
  1196. #ifndef ASM_IDENTIFY_GCC
  1197.   fprintf (asm_out_file, "gcc_compiled.:\n");
  1198. #else
  1199.   ASM_IDENTIFY_GCC (asm_out_file);
  1200. #endif
  1201.  
  1202. #ifndef MPW
  1203.   /* If GDB symbol table desired, open the GDB symbol output file.  */
  1204.   if (write_symbols == GDB_DEBUG)
  1205.     {
  1206.       register char *dumpname = (char *) xmalloc (dump_base_name_length + 6);
  1207.       int len = strlen (dump_base_name);
  1208.       strcpy (dumpname, dump_base_name);
  1209.       if (len > 2 && ! strcmp (".c", dumpname + len - 2))
  1210.     dumpname[len - 2] = 0;
  1211.       else if (len > 2 && ! strcmp (".i", dumpname + len - 2))
  1212.     dumpname[len - 2] = 0;
  1213.       else if (len > 3 && ! strcmp (".co", dumpname + len - 3))
  1214.     dumpname[len - 3] = 0;
  1215.       strcat (dumpname, ".sym");
  1216.       if (sym_file_name == 0)
  1217.     sym_file_name = dumpname;
  1218.       symout_init (sym_file_name, asm_out_file, main_input_filename);
  1219.     }
  1220. #endif /* n MPW */
  1221.  
  1222.   /* If dbx symbol table desired, initialize writing it
  1223.      and output the predefined types.  */
  1224. #ifdef DBX_DEBUGGING_INFO
  1225.   if (write_symbols == DBX_DEBUG)
  1226.     dbxout_init (asm_out_file, main_input_filename);
  1227. #endif
  1228. #ifdef SDB_DEBUGGING_INFO
  1229.   if (write_symbols == SDB_DEBUG)
  1230.     sdbout_init (asm_out_file, main_input_filename);
  1231. #endif
  1232.  
  1233.   /* Initialize yet another pass.  */
  1234.  
  1235.   init_final (main_input_filename);
  1236.  
  1237.   start_time = gettime ();
  1238.  
  1239.   /* Call the parser, which parses the entire file
  1240.      (calling rest_of_compilation for each function).  */
  1241.  
  1242.   yyparse ();
  1243.  
  1244.   /* Compilation is now finished except for writing
  1245.      what's left of the symbol table output.  */
  1246.  
  1247.   parse_time += gettime () - start_time;
  1248.  
  1249.   parse_time -= integration_time;
  1250.   parse_time -= varconst_time;
  1251.  
  1252.   globals = getdecls ();
  1253.  
  1254.   /* Really define vars that have had only a tentative definition.
  1255.      Really output inline functions that must actually be callable
  1256.      and have not been output so far.  */
  1257.  
  1258.   {
  1259.     tree decl;
  1260.     for (decl = globals; decl; decl = TREE_CHAIN (decl))
  1261.       {
  1262.     if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)
  1263.         && ! TREE_ASM_WRITTEN (decl))
  1264.       {
  1265.         /* Don't write out static consts, unless we needed
  1266.            to take their address for some reason.  */
  1267.         if (! TREE_READONLY (decl)
  1268.         || TREE_PUBLIC (decl)
  1269.         || TREE_ADDRESSABLE (decl))
  1270.           rest_of_decl_compilation (decl, 0, 1, 1);
  1271.         /* Otherwise maybe mention them just for the debugger.  */
  1272. #ifdef DBX_DEBUGGING_INFO
  1273.         else if (DECL_INITIAL (decl) && write_symbols == DBX_DEBUG)
  1274.           TIMEVAR (varconst_time, dbxout_symbol (decl, 0));
  1275. #endif
  1276. #ifdef SDB_DEBUGGING_INFO
  1277.         else if (DECL_INITIAL (decl) && write_symbols == SDB_DEBUG)
  1278.           TIMEVAR (varconst_time, sdbout_symbol (decl, 0));
  1279. #endif
  1280.       }
  1281.     if (TREE_CODE (decl) == FUNCTION_DECL
  1282.         && ! TREE_ASM_WRITTEN (decl)
  1283.         && DECL_INITIAL (decl) != 0
  1284.         && TREE_ADDRESSABLE (decl)
  1285. #ifdef APPLE_C
  1286.         /* Direct functions should *never* have defns written out */
  1287.         && ! TREE_DIRECT (decl)
  1288. #endif /* APPLE_C */
  1289.         && ! TREE_EXTERNAL (decl))
  1290.       output_inline_function (decl);
  1291.  
  1292.     /* Warn about any function declared static but not defined.  */
  1293.     if (warn_unused
  1294.         && TREE_CODE (decl) == FUNCTION_DECL
  1295.         && DECL_INITIAL (decl) == 0
  1296.         && TREE_EXTERNAL (decl)
  1297.         && ! TREE_PUBLIC (decl))
  1298.       warning_with_decl (decl, "`%s' declared but never defined");
  1299.     /* Warn about statics fns or vars defined but not used,
  1300.        but not about inline functions
  1301.        since unused inline statics is normal practice.  */
  1302.     if (warn_unused
  1303.         && (TREE_CODE (decl) == FUNCTION_DECL
  1304.         || TREE_CODE (decl) == VAR_DECL)
  1305.         && ! TREE_EXTERNAL (decl)
  1306.         && ! TREE_PUBLIC (decl)
  1307.         && ! TREE_USED (decl)
  1308.         && ! TREE_INLINE (decl)
  1309.         /* The TREE_USED bit for file-scope decls
  1310.            is kept in the identifier, to handle multiple
  1311.            external decls in different scopes.  */
  1312.         && ! TREE_USED (DECL_NAME (decl)))
  1313.       warning_with_decl (decl, "`%s' defined but not used");
  1314.       }
  1315.   }
  1316.  
  1317.   /* Do dbx symbols */
  1318. #ifdef DBX_DEBUGGING_INFO
  1319.   if (write_symbols == DBX_DEBUG)
  1320.     TIMEVAR (symout_time,
  1321.          {
  1322.            dbxout_tags (gettags ());
  1323.            dbxout_types (get_permanent_types ());
  1324.          });
  1325. #endif
  1326.  
  1327. #ifdef SDB_DEBUGGING_INFO
  1328.   if (write_symbols == SDB_DEBUG)
  1329.     TIMEVAR (symout_time,
  1330.          {
  1331.            sdbout_tags (gettags ());
  1332.            sdbout_types (get_permanent_types ());
  1333.          });
  1334. #endif
  1335.  
  1336.   /* Do gdb symbols */
  1337. #ifndef MPW
  1338.   /* Need symbol output time only if symbols were actually output. */
  1339.   if (write_symbols == GDB_DEBUG)
  1340.     TIMEVAR (symout_time,
  1341.          {
  1342.            struct stat statbuf;
  1343.            fstat (fileno (finput), &statbuf);
  1344.            symout_types (get_permanent_types ());
  1345.            symout_top_blocks (globals, gettags ());
  1346.            symout_finish (name, statbuf.st_ctime);
  1347.          });
  1348. #endif /* n MPW */
  1349.  
  1350.   /* Output some stuff at end of file if nec.  */
  1351.  
  1352.   end_final (main_input_filename);
  1353.  
  1354. #ifdef ASM_FILE_END
  1355.   ASM_FILE_END (asm_out_file);
  1356. #endif
  1357.  
  1358.   /* Close the dump files.  */
  1359.  
  1360.   if (rtl_dump)
  1361.     fclose (rtl_dump_file);
  1362.  
  1363.   if (jump_opt_dump)
  1364.     fclose (jump_opt_dump_file);
  1365.  
  1366.   if (cse_dump)
  1367.     fclose (cse_dump_file);
  1368.  
  1369.   if (loop_dump)
  1370.     fclose (loop_dump_file);
  1371.  
  1372.   if (flow_dump)
  1373.     fclose (flow_dump_file);
  1374.  
  1375.   if (combine_dump)
  1376.     {
  1377.       dump_combine_total_stats (combine_dump_file);
  1378.       fclose (combine_dump_file);
  1379.     }
  1380.  
  1381.   if (local_reg_dump)
  1382.     fclose (local_reg_dump_file);
  1383.  
  1384.   if (global_reg_dump)
  1385.     fclose (global_reg_dump_file);
  1386.  
  1387.   if (jump2_opt_dump)
  1388.     fclose (jump2_opt_dump_file);
  1389.  
  1390.   if (dbr_sched_dump)
  1391.     fclose (dbr_sched_dump_file);
  1392.  
  1393.   /* Close non-debugging input and output files.  Take special care to note
  1394.      whether fclose returns an error, since the pages might still be on the
  1395.      buffer chain while the file is open.  */
  1396.  
  1397.   fclose (finput);
  1398.   if (ferror (asm_out_file) != 0 || fclose (asm_out_file) != 0)
  1399.     fatal_io_error (asm_file_name);
  1400.  
  1401.   /* Print the times.  */
  1402.  
  1403.   if (! quiet_flag)
  1404.     {
  1405.       fprintf (stderr,"\n");
  1406.       print_time ("parse", parse_time);
  1407.       print_time ("integration", integration_time);
  1408.       print_time ("jump", jump_time);
  1409.       print_time ("cse", cse_time);
  1410.       print_time ("loop", loop_time);
  1411.       print_time ("flow", flow_time);
  1412.       print_time ("combine", combine_time);
  1413.       print_time ("local-alloc", local_alloc_time);
  1414.       print_time ("global-alloc", global_alloc_time);
  1415. #ifdef APPLE_HAX
  1416.       /* Delayed branch execution time should only be printed if we actually
  1417.      have delayed branches on this machine. */
  1418. #ifdef HAVE_DELAYED_BRANCH
  1419.       print_time ("dbranch", dbr_sched_time);
  1420. #endif
  1421. #else
  1422.       print_time ("dbranch", dbr_sched_time);
  1423. #endif /* APPLE_HAX */
  1424.       print_time ("final", final_time);
  1425.       print_time ("varconst", varconst_time);
  1426. #ifndef MPW
  1427.       /* Don't print symbol output time when under MPW. */
  1428.       print_time ("symout", symout_time);
  1429. #endif /* MPW */
  1430.       print_time ("dump", dump_time);
  1431.     }
  1432. }
  1433.  
  1434. /* This is called from finish_decl (within yyparse)
  1435.    for each declaration of a function or variable.
  1436.    This does nothing for automatic variables.
  1437.    Otherwise, it sets up the RTL and outputs any assembler code
  1438.    (label definition, storage allocation and initialization).
  1439.  
  1440.    DECL is the declaration.  If ASMSPEC is nonzero, it specifies
  1441.    the assembler symbol name to be used.  TOP_LEVEL is nonzero
  1442.    if this declaration is not within a function.  */
  1443.  
  1444. void
  1445. rest_of_decl_compilation (decl, asmspec, top_level, at_end)
  1446.      tree decl;
  1447.      char *asmspec;
  1448.      int top_level;
  1449.      int at_end;
  1450. {
  1451.   /* Declarations of variables, and of functions defined elsewhere.  */
  1452. #ifdef MPW
  1453.   SpinCursor (1);
  1454. #endif /* MPW */
  1455.  
  1456.   if (TREE_STATIC (decl) || TREE_EXTERNAL (decl))
  1457.     TIMEVAR (varconst_time,
  1458.          {
  1459.            make_decl_rtl (decl, asmspec, top_level);
  1460.            /* Don't output anything
  1461.           when a tentative file-scope definition is seen.
  1462.           But at end of compilation, do output code for them.  */
  1463.            if (! (! at_end && top_level
  1464.               && (DECL_INITIAL (decl) == 0
  1465.               || DECL_INITIAL (decl) == error_mark_node)))
  1466.          assemble_variable (decl, top_level, write_symbols, at_end);
  1467.          });
  1468.   else if (TREE_REGDECL (decl) && asmspec != 0)
  1469.     {
  1470.       if (decode_reg_name (asmspec) >= 0)
  1471.     {
  1472.       DECL_RTL (decl) = 0;
  1473.       make_decl_rtl (decl, asmspec, top_level);
  1474.     }
  1475.       else
  1476.     error ("invalid register name `%s' for register variable", asmspec);
  1477.     }
  1478. #ifdef DBX_DEBUGGING_INFO
  1479.   else if (write_symbols == DBX_DEBUG && TREE_CODE (decl) == TYPE_DECL)
  1480.     TIMEVAR (varconst_time, dbxout_symbol (decl, 0));
  1481. #endif
  1482. #ifdef SDB_DEBUGGING_INFO
  1483.   else if (write_symbols == SDB_DEBUG && TREE_CODE (decl) == TYPE_DECL)
  1484.     TIMEVAR (varconst_time, sdbout_symbol (decl, 0));
  1485. #endif
  1486.  
  1487.   if (top_level)
  1488.     {
  1489.       if (write_symbols == GDB_DEBUG)
  1490.     {
  1491. #ifndef MPW
  1492.       /* Don't need gdb symbol output in an MPW environment. */
  1493.       TIMEVAR (symout_time,
  1494.            {
  1495.              /* The initizations make types when they contain
  1496.             string constants.  The types are on the temporary
  1497.             obstack, so output them now before they go away.  */
  1498.              symout_types (get_temporary_types ());
  1499.            });
  1500. #endif /* n MPW */
  1501.     }
  1502.       else
  1503.     /* Clean out the temporary type list, since the types will go away.  */
  1504.     get_temporary_types ();
  1505.     }
  1506. }
  1507.  
  1508. /* This is called from finish_function (within yyparse)
  1509.    after each top-level definition is parsed.
  1510.    It is supposed to compile that function or variable
  1511.    and output the assembler code for it.
  1512.    After we return, the tree storage is freed.  */
  1513.  
  1514. void
  1515. rest_of_compilation (decl)
  1516.      tree decl;
  1517. {
  1518.   register rtx insns;
  1519.   int start_time = gettime ();
  1520.   int tem;
  1521.  
  1522. #ifdef MPW
  1523.   SpinCursor (1);
  1524. #endif /* MPW */
  1525.   /* If we are reconsidering an inline function
  1526.      at the end of compilation, skip the stuff for making it inline.  */
  1527.  
  1528.   if (DECL_SAVED_INSNS (decl) == 0)
  1529.     {
  1530.  
  1531.       /* If requested, consider whether to make this function inline.  */
  1532.       if (flag_inline_functions || TREE_INLINE (decl))
  1533.     {
  1534.       TIMEVAR (integration_time,
  1535.            {
  1536.              int specd = TREE_INLINE (decl);
  1537.              char *lose = function_cannot_inline_p (decl);
  1538.              if (lose != 0 && specd)
  1539.                warning_with_decl (decl, lose);
  1540.              if (lose == 0)
  1541.                save_for_inline (decl);
  1542.              else
  1543.                TREE_INLINE (decl) = 0;
  1544.            });
  1545.     }
  1546.  
  1547.       insns = get_insns ();
  1548.  
  1549.       /* Dump the rtl code if we are dumping rtl.  */
  1550.  
  1551.       if (rtl_dump)
  1552.     TIMEVAR (dump_time,
  1553.          {
  1554.            fprintf (rtl_dump_file, "\n;; Function %s\n\n",
  1555.                 IDENTIFIER_POINTER (DECL_NAME (decl)));
  1556.            if (DECL_SAVED_INSNS (decl))
  1557.              fprintf (rtl_dump_file, ";; (integrable)\n\n");
  1558.            print_rtl (rtl_dump_file, insns);
  1559.            fflush (rtl_dump_file);
  1560.          });
  1561.  
  1562.       /* If function is inline, and we don't yet know whether to
  1563.      compile it by itself, defer decision till end of compilation.
  1564.      finish_compilation will call rest_of_compilation again
  1565.      for those functions that need to be output.  */
  1566.  
  1567.       if (((! TREE_PUBLIC (decl) && ! TREE_ADDRESSABLE (decl)
  1568.         && ! flag_keep_inline_functions)
  1569.        || TREE_EXTERNAL (decl))
  1570.       && TREE_INLINE (decl))
  1571.     goto exit_rest_of_compilation;
  1572.  
  1573. #ifdef APPLE_C
  1574.       /* Under no circumstances should we attempt to write out a definition
  1575.      of a direct function. */
  1576.       if (TREE_DIRECT (decl))
  1577.     goto exit_rest_of_compilation;
  1578. #endif /* APPLE_C */
  1579.     }
  1580.   if (rtl_dump_and_exit || flag_syntax_only)
  1581.     {
  1582.       get_temporary_types ();
  1583.       goto exit_rest_of_compilation;
  1584.     }
  1585.  
  1586.   TREE_ASM_WRITTEN (decl) = 1;
  1587.  
  1588.   insns = get_insns ();
  1589.  
  1590.   /* Copy any shared structure that should not be shared.  */
  1591.  
  1592.   unshare_all_rtl (insns);
  1593.  
  1594.   /* See if we have allocated stack slots that are not directly addressable.
  1595.      If so, scan all the insns and create explicit address computation
  1596.      for all references to such slots.  */
  1597. /*   fixup_stack_slots (); */
  1598.  
  1599.   /* Do jump optimization the first time, if -opt.
  1600.      Also do it if -W, but in that case it doesn't change the rtl code,
  1601.      it only computes whether control can drop off the end of the function.  */
  1602.  
  1603.   if (optimize || extra_warnings || warn_return_type
  1604.       /* If function is `volatile', we should warn if it tries to return.  */
  1605.       || TREE_THIS_VOLATILE (decl))
  1606.     TIMEVAR (jump_time, jump_optimize (insns, 0, 0));
  1607. #ifdef MPW
  1608.   SpinCursor (1);
  1609. #endif /* MPW */
  1610.  
  1611.   /* Dump rtl code after jump, if we are doing that.  */
  1612.  
  1613.   if (jump_opt_dump)
  1614.     TIMEVAR (dump_time,
  1615.          {
  1616.            fprintf (jump_opt_dump_file, "\n;; Function %s\n\n",
  1617.             IDENTIFIER_POINTER (DECL_NAME (decl)));
  1618.            print_rtl (jump_opt_dump_file, insns);
  1619.            fflush (jump_opt_dump_file);
  1620.          });
  1621.  
  1622.   /* Perform common subexpression elimination.
  1623.      Nonzero value from `cse_main' means that jumps were simplified
  1624.      and some code may now be unreachable, so do
  1625.      jump optimization again.  */
  1626.  
  1627.   if (optimize)
  1628.     {
  1629.       TIMEVAR (cse_time, reg_scan (insns, max_reg_num (), 0));
  1630.  
  1631.       TIMEVAR (cse_time, tem = cse_main (insns, max_reg_num ()));
  1632.  
  1633.       if (tem)
  1634.     TIMEVAR (jump_time, jump_optimize (insns, 0, 0));
  1635.     }
  1636.  
  1637. #ifdef MPW
  1638.   SpinCursor (1);
  1639. #endif /* MPW */
  1640.   /* Dump rtl code after cse, if we are doing that.  */
  1641.  
  1642.   if (cse_dump)
  1643.     TIMEVAR (dump_time,
  1644.          {
  1645.            fprintf (cse_dump_file, "\n;; Function %s\n\n",
  1646.             IDENTIFIER_POINTER (DECL_NAME (decl)));
  1647.            print_rtl (cse_dump_file, insns);
  1648.            fflush (cse_dump_file);
  1649.          });
  1650.  
  1651.   if (loop_dump)
  1652.     TIMEVAR (dump_time,
  1653.          {
  1654.            fprintf (loop_dump_file, "\n;; Function %s\n\n",
  1655.             IDENTIFIER_POINTER (DECL_NAME (decl)));
  1656.          });
  1657.  
  1658.   /* Move constant computations out of loops.  */
  1659.  
  1660.   if (optimize)
  1661.     {
  1662.       TIMEVAR (loop_time,
  1663.            {
  1664.          reg_scan (insns, max_reg_num (), 1);
  1665.          loop_optimize (insns, loop_dump ? loop_dump_file : 0);
  1666.            });
  1667.     }
  1668. #ifdef MPW
  1669.   SpinCursor (1);
  1670. #endif /* MPW */
  1671.  
  1672.   /* Dump rtl code after loop opt, if we are doing that.  */
  1673.  
  1674.   if (loop_dump)
  1675.     TIMEVAR (dump_time,
  1676.          {
  1677.            print_rtl (loop_dump_file, insns);
  1678.            fflush (loop_dump_file);
  1679.          });
  1680.  
  1681.   /* Now we choose between stupid (pcc-like) register allocation
  1682.      (if we got the -noreg switch and not -opt)
  1683.      and smart register allocation.  */
  1684.  
  1685.   if (optimize)        /* Stupid allocation probably won't work */
  1686.     obey_regdecls = 0;    /* if optimizations being done.  */
  1687.  
  1688.   regclass_init ();
  1689.  
  1690.   /* Print function header into flow dump now
  1691.      because doing the flow analysis makes some of the dump.  */
  1692.  
  1693.   if (flow_dump)
  1694.     TIMEVAR (dump_time,
  1695.          {
  1696.            fprintf (flow_dump_file, "\n;; Function %s\n\n",
  1697.             IDENTIFIER_POINTER (DECL_NAME (decl)));
  1698.          });
  1699.  
  1700.   if (obey_regdecls)
  1701.     {
  1702.       TIMEVAR (flow_time,
  1703.            {
  1704.          regclass (insns, max_reg_num ());
  1705.          stupid_life_analysis (insns, max_reg_num (),
  1706.                        flow_dump_file);
  1707.            });
  1708.     }
  1709.   else
  1710.     {
  1711.       /* Do control and data flow analysis,
  1712.      and write some of the results to dump file.  */
  1713.  
  1714.       TIMEVAR (flow_time, flow_analysis (insns, max_reg_num (),
  1715.                      flow_dump_file));
  1716.       if (extra_warnings)
  1717.     uninitialized_vars_warning (DECL_INITIAL (decl));
  1718.     }
  1719. #ifdef MPW
  1720.   SpinCursor (1);
  1721. #endif /* MPW */
  1722.  
  1723.   /* Dump rtl after flow analysis.  */
  1724.  
  1725.   if (flow_dump)
  1726.     TIMEVAR (dump_time,
  1727.          {
  1728.            print_rtl (flow_dump_file, insns);
  1729.            fflush (flow_dump_file);
  1730.          });
  1731.  
  1732.   /* If -opt, try combining insns through substitution.  */
  1733.  
  1734.   if (optimize)
  1735.     TIMEVAR (combine_time, combine_instructions (insns, max_reg_num ()));
  1736. #ifdef MPW
  1737.   SpinCursor (1);
  1738. #endif /* MPW */
  1739.  
  1740.   /* Dump rtl code after insn combination.  */
  1741.  
  1742.   if (combine_dump)
  1743.     TIMEVAR (dump_time,
  1744.          {
  1745.            fprintf (combine_dump_file, "\n;; Function %s\n\n",
  1746.             IDENTIFIER_POINTER (DECL_NAME (decl)));
  1747.            dump_combine_stats (combine_dump_file);
  1748.            print_rtl (combine_dump_file, insns);
  1749.            fflush (combine_dump_file);
  1750.          });
  1751.  
  1752.   /* Unless we did stupid register allocation,
  1753.      allocate pseudo-regs that are used only within 1 basic block.  */
  1754.  
  1755.   if (!obey_regdecls)
  1756.     TIMEVAR (local_alloc_time,
  1757.          {
  1758.            regclass (insns, max_reg_num ());
  1759.            local_alloc ();
  1760.          });
  1761. #ifdef MPW
  1762.   SpinCursor (1);
  1763. #endif /* MPW */
  1764.  
  1765.   /* Dump rtl code after allocating regs within basic blocks.  */
  1766.  
  1767.   if (local_reg_dump)
  1768.     TIMEVAR (dump_time,
  1769.          {
  1770.            fprintf (local_reg_dump_file, "\n;; Function %s\n\n",
  1771.             IDENTIFIER_POINTER (DECL_NAME (decl)));
  1772.            dump_flow_info (local_reg_dump_file);
  1773.            dump_local_alloc (local_reg_dump_file);
  1774.            print_rtl (local_reg_dump_file, insns);
  1775.            fflush (local_reg_dump_file);
  1776.          });
  1777.  
  1778.   if (global_reg_dump)
  1779.     TIMEVAR (dump_time,
  1780.          fprintf (global_reg_dump_file, "\n;; Function %s\n\n",
  1781.               IDENTIFIER_POINTER (DECL_NAME (decl))));
  1782.  
  1783.   /* Unless we did stupid register allocation,
  1784.      allocate remaining pseudo-regs, then do the reload pass
  1785.      fixing up any insns that are invalid.  */
  1786.  
  1787.   TIMEVAR (global_alloc_time,
  1788.        {
  1789.          if (!obey_regdecls)
  1790.            global_alloc (global_reg_dump ? global_reg_dump_file : 0);
  1791.          else
  1792.            reload (insns, 0,
  1793.                global_reg_dump ? global_reg_dump_file : 0);
  1794.        });
  1795. #ifdef MPW
  1796.   SpinCursor (1);
  1797. #endif /* MPW */
  1798.  
  1799.   if (global_reg_dump)
  1800.     TIMEVAR (dump_time,
  1801.          {
  1802.            dump_global_regs (global_reg_dump_file);
  1803.            print_rtl (global_reg_dump_file, insns);
  1804.            fflush (global_reg_dump_file);
  1805.          });
  1806.  
  1807.   rtx_equal_function_value_matters = 1;
  1808.   reload_completed = 1;
  1809.  
  1810.   /* One more attempt to remove jumps to .+1
  1811.      left by dead-store-elimination.
  1812.      Also do cross-jumping this time
  1813.      and delete no-op move insns.  */
  1814.  
  1815.   if (optimize)
  1816.     {
  1817.       TIMEVAR (jump_time, jump_optimize (insns, 1, 1));
  1818.     }
  1819. #ifdef MPW
  1820.   SpinCursor (1);
  1821. #endif /* MPW */
  1822.  
  1823.   /* Dump rtl code after jump, if we are doing that.  */
  1824.  
  1825.   if (jump2_opt_dump)
  1826.     TIMEVAR (dump_time,
  1827.          {
  1828.            fprintf (jump2_opt_dump_file, "\n;; Function %s\n\n",
  1829.             IDENTIFIER_POINTER (DECL_NAME (decl)));
  1830.            print_rtl (jump2_opt_dump_file, insns);
  1831.            fflush (jump2_opt_dump_file);
  1832.          });
  1833.  
  1834.   /* If a scheduling pass for delayed branches is to be done,
  1835.      call the scheduling code. */
  1836.  
  1837. #ifdef HAVE_DELAYED_BRANCH
  1838.   if (optimize && flag_delayed_branch)
  1839.     {
  1840.       TIMEVAR (dbr_sched_time, dbr_schedule (insns, dbr_sched_dump_file));
  1841.       if (dbr_sched_dump)
  1842.     {
  1843.       TIMEVAR (dump_time,
  1844.          {
  1845.            fprintf (dbr_sched_dump_file, "\n;; Function %s\n\n",
  1846.                 IDENTIFIER_POINTER (DECL_NAME (decl)));
  1847.            print_rtl (dbr_sched_dump_file, insns);
  1848.            fflush (dbr_sched_dump_file);
  1849.          });
  1850.     }
  1851.     }
  1852. #endif
  1853.  
  1854.   /* Now turn the rtl into assembler code.  */
  1855.  
  1856.   TIMEVAR (final_time,
  1857.        {
  1858.          assemble_function (decl);
  1859.          final_start_function (insns, asm_out_file,
  1860.                    write_symbols, optimize);
  1861.          final (insns, asm_out_file,
  1862.             write_symbols, optimize, 0);
  1863.          final_end_function (insns, asm_out_file,
  1864.                  write_symbols, optimize);
  1865.          fflush (asm_out_file);
  1866.        });
  1867. #ifdef MPW
  1868.   SpinCursor (1);
  1869. #endif /* MPW */
  1870.  
  1871.   /* Write GDB symbols if requested */
  1872.  
  1873. #ifndef MPW
  1874.   /* Don't need gdb symbols in an MPW environment. */
  1875.   if (write_symbols == GDB_DEBUG)
  1876.     {
  1877.       TIMEVAR (symout_time,
  1878.            {
  1879.          symout_types (get_permanent_types ());
  1880.          symout_types (get_temporary_types ());
  1881.  
  1882.          DECL_BLOCK_SYMTAB_ADDRESS (decl)
  1883.            = symout_function (DECL_INITIAL (decl),
  1884.                       DECL_ARGUMENTS (decl), 0);
  1885.          symout_function_end ();
  1886.            });
  1887.     }
  1888.   else
  1889. #endif /* n MPW */
  1890.     get_temporary_types ();
  1891.  
  1892.   /* Write DBX symbols if requested */
  1893.  
  1894. #ifdef DBX_DEBUGGING_INFO
  1895.   if (write_symbols == DBX_DEBUG)
  1896.     TIMEVAR (symout_time, dbxout_function (decl));
  1897. #endif
  1898.  
  1899.  exit_rest_of_compilation:
  1900.  
  1901.   rtx_equal_function_value_matters = 0;
  1902.   reload_completed = 0;
  1903.  
  1904.   /* Clear out the real_constant_chain before some of the rtx's
  1905.      it runs through become garbage.  */
  1906.  
  1907.   clear_const_double_mem ();
  1908.  
  1909.   /* The parsing time is all the time spent in yyparse
  1910.      *except* what is spent in this function.  */
  1911.  
  1912.   parse_time -= gettime () - start_time;
  1913. }
  1914.  
  1915. /* Entry point of cc1.  Decode command args, then call compile_file.
  1916.    Exit code is 35 if can't open files, 34 if fatal error,
  1917.    33 if had nonfatal errors, else success.  */
  1918.  
  1919. int
  1920. main (argc, argv, envp)
  1921.      int argc;
  1922.      char **argv;
  1923.      char **envp;
  1924. {
  1925.   register int i;
  1926.   char *filename = 0;
  1927.   int print_mem_flag = 0;
  1928.   char *p;
  1929.  
  1930.   /* save in case md file wants to emit args as a comment.  */
  1931.   save_argc = argc;
  1932.   save_argv = argv;
  1933.  
  1934. #ifdef MPW
  1935.   /* Don't bother trying to pick apart program name and full pathname. */
  1936.   p = argv[0];
  1937. #else
  1938.   p = argv[0] + strlen (argv[0]);
  1939.   while (p != argv[0] && p[-1] != '/') --p;
  1940. #endif /* MPW */
  1941.   progname = p;
  1942.  
  1943. #ifdef RLIMIT_STACK
  1944.   /* Get rid of any avoidable limit on stack size.  */
  1945.   {
  1946.     struct rlimit rlim;
  1947.  
  1948.     /* Set the stack limit huge so that alloca does not fail. */
  1949.     getrlimit (RLIMIT_STACK, &rlim);
  1950.     rlim.rlim_cur = rlim.rlim_max;
  1951.     setrlimit (RLIMIT_STACK, &rlim);
  1952.   }
  1953. #endif /* RLIMIT_STACK */
  1954.  
  1955.   signal (SIGFPE, float_signal);
  1956.  
  1957. #ifndef MPW
  1958.   /* No SIGPIPE in MPW. */
  1959.   signal (SIGPIPE, pipe_closed);
  1960. #endif /* n MPW */
  1961.  
  1962. #ifdef MPW
  1963.   /* Prepare to spin the beach ball. */
  1964.   InitCursorCtl (nil);
  1965. #ifdef PERFORMANCE
  1966.   /* Set up some performance analysis stuff. */
  1967.   ThePGlobals = nil;
  1968.   if (!InitPerf (&ThePGlobals,
  1969.          10,  /* 10 ms between samples */
  1970.          16,  /* 16-byte buckets */
  1971.          false, /* ROM code uninteresting to us */
  1972.          true, /* our code interesting */
  1973.          "\pCODE",
  1974.          0,
  1975.          "",
  1976.          false, 0, 0, 0 /* how do RAM misses happen anyway? */
  1977.         ))
  1978.     abort ();
  1979.   PerfControl (ThePGlobals, true);
  1980. #endif /* PERFORMANCE */
  1981. #endif /* MPW */
  1982.  
  1983.   /* Initialize whether `char' is signed.  */
  1984.   flag_signed_char = DEFAULT_SIGNED_CHAR;
  1985. #ifdef DEFAULT_SHORT_ENUMS
  1986.   /* Initialize how much space enums occupy, by default.  */
  1987.   flag_short_enums = DEFAULT_SHORT_ENUMS;
  1988. #endif
  1989.  
  1990.   /* This is zeroed by -O.  */
  1991.   obey_regdecls = 1;
  1992.  
  1993.   /* Initialize register usage now so switches may override.  */
  1994.   init_reg_sets ();
  1995.  
  1996.   target_flags = 0;
  1997.   set_target_switch ("");
  1998.  
  1999.   for (i = 1; i < argc; i++)
  2000.     if (argv[i][0] == '-' && argv[i][1] != 0)
  2001.       {
  2002.     register char *str = argv[i] + 1;
  2003.     if (str[0] == 'Y')
  2004.       str++;
  2005.  
  2006.     if (str[0] == 'm')
  2007.       set_target_switch (&str[1]);
  2008.     else if (!strcmp (str, "dumpbase"))
  2009.       {
  2010.         dump_base_name = argv[++i];
  2011.       }
  2012.     else if (str[0] == 'd')
  2013.       {
  2014.         register char *p = &str[1];
  2015.         while (*p)
  2016.           switch (*p++)
  2017.         {
  2018.         case 'c':
  2019.           combine_dump = 1;
  2020.           break;
  2021.         case 'd':
  2022.           dbr_sched_dump = 1;
  2023.           break;
  2024.         case 'f':
  2025.           flow_dump = 1;
  2026.           break;
  2027.         case 'g':
  2028.           global_reg_dump = 1;
  2029.           break;
  2030.         case 'j':
  2031.           jump_opt_dump = 1;
  2032.           break;
  2033.         case 'J':
  2034.           jump2_opt_dump = 1;
  2035.           break;
  2036.         case 'l':
  2037.           local_reg_dump = 1;
  2038.           break;
  2039.         case 'L':
  2040.           loop_dump = 1;
  2041.           break;
  2042.         case 'm':
  2043.           print_mem_flag = 1;
  2044.           break;
  2045.         case 'r':
  2046.           rtl_dump = 1;
  2047.           break;
  2048.         case 's':
  2049.           cse_dump = 1;
  2050.           break;
  2051.         case 'y':
  2052.           yydebug = 1;
  2053.           break;
  2054.         }
  2055.       }
  2056.     else if (str[0] == 'f')
  2057.       {
  2058.         int j;
  2059.         register char *p = &str[1];
  2060.         int found = 0;
  2061.  
  2062.         /* Some kind of -f option.
  2063.            P's value is the option sans `-f'.
  2064.            Search for it in the table of options.  */
  2065.  
  2066.         for (j = 0;
  2067.          !found && j < sizeof (f_options) / sizeof (f_options[0]);
  2068.          j++)
  2069.           {
  2070.         if (!strcmp (p, f_options[j].string))
  2071.           {
  2072.             *f_options[j].variable = f_options[j].on_value;
  2073.             /* A goto here would be cleaner,
  2074.                but breaks the vax pcc.  */
  2075.             found = 1;
  2076.           }
  2077.         if (p[0] == 'n' && p[1] == 'o' && p[2] == '-'
  2078.             && ! strcmp (p+3, f_options[j].string))
  2079.           {
  2080.             *f_options[j].variable = ! f_options[j].on_value;
  2081.             found = 1;
  2082.           }
  2083.           }
  2084.  
  2085.         if (found)
  2086.           ;
  2087.         else if (!strncmp (p, "fixed-", 6))
  2088.           fix_register (&p[6], 1, 1);
  2089.         else if (!strncmp (p, "call-used-", 10))
  2090.           fix_register (&p[10], 0, 1);
  2091.         else if (!strncmp (p, "call-saved-", 11))
  2092.           fix_register (&p[11], 0, 0);
  2093.         else if (! lang_decode_option (argv[i]))
  2094.           error ("Invalid option `%s'", argv[i]);
  2095.       }
  2096.     else if (!strcmp (str, "noreg"))
  2097.       ;
  2098.     else if (!strcmp (str, "opt"))
  2099.       optimize = 1, obey_regdecls = 0;
  2100.     else if (!strcmp (str, "O"))
  2101.       optimize = 1, obey_regdecls = 0;
  2102.     else if (!strcmp (str, "pedantic"))
  2103.       pedantic = 1;
  2104. #ifdef APPLE_C
  2105.     /* Decode the command-line option for supplying a segment name. */
  2106.     else if (!strcmp (str, "s"))
  2107.       segment_name = argv[++i];
  2108.     /* Decode the various forms of the option to generate trace hook calls
  2109.        for the MacApp debugger. */
  2110.     else if (!strcmp (str, "trace"))
  2111.       {
  2112.           char *tracelevel = argv[++i];
  2113.         
  2114.         if (!strcmp (tracelevel, "always"))
  2115.           generate_trace_calls = 1, ignore_trace_pragmas = 1;
  2116.         else if (!strcmp (tracelevel, "on"))
  2117.           generate_trace_calls = 1, ignore_trace_pragmas = 0;
  2118.         else if (!strcmp (tracelevel, "off"))
  2119.           generate_trace_calls = 0, ignore_trace_pragmas = 0;
  2120.         else if (!strcmp (tracelevel, "never"))
  2121.           generate_trace_calls = 0, ignore_trace_pragmas = 1;
  2122.         else
  2123.           {
  2124.               error ("Invalid trace option `%s'", argv[i]);
  2125.           }
  2126.       }
  2127. #endif /* APPLE_C */
  2128.     else if (lang_decode_option (argv[i]))
  2129.       ;
  2130.     else if (!strcmp (str, "quiet"))
  2131.       quiet_flag = 1;
  2132.     else if (!strcmp (str, "version"))
  2133.       {
  2134.         extern char *version_string, *language_string;
  2135.         fprintf (stderr, "%s version %s", language_string, version_string);
  2136. #ifdef TARGET_VERSION
  2137.         TARGET_VERSION;
  2138. #endif
  2139. #ifdef __GNUC__
  2140. #ifndef __VERSION__
  2141. #define __VERSION__ "[unknown]"
  2142. #endif
  2143.         fprintf (stderr, " compiled by GNU C version %s.\n", __VERSION__);
  2144. #else
  2145. #ifdef MPW
  2146.         /* Identify the old compiler properly. */
  2147.         fprintf (stderr, " compiled by MPW C.\n");
  2148. #else
  2149.         fprintf (stderr, " compiled by CC.\n");
  2150. #endif /* MPW */
  2151. #endif
  2152.         print_target_switch_defaults ();
  2153.       }
  2154.     else if (!strcmp (str, "w"))
  2155.       inhibit_warnings = 1;
  2156.     else if (!strcmp (str, "W"))
  2157.       extra_warnings = 1;
  2158.     else if (!strcmp (str, "Wunused"))
  2159.       warn_unused = 1;
  2160.     else if (!strcmp (str, "Wshadow"))
  2161.       warn_shadow = 1;
  2162.     else if (!strcmp (str, "Wswitch"))
  2163.       warn_switch = 1;
  2164.     else if (!strncmp (str, "Wid-clash-", 10))
  2165.       {
  2166.         char *endp = str + 10;
  2167.  
  2168.         while (*endp)
  2169.           {
  2170.         if (*endp >= '0' && *endp <= '9')
  2171.           endp++;
  2172.         else
  2173.           error ("Invalid option `%s'", argv[i]);
  2174.           }
  2175.         warn_id_clash = 1;
  2176.         id_clash_len = atoi (str + 10);
  2177.       }
  2178.     else if (!strcmp (str, "p"))
  2179.       profile_flag = 1;
  2180.     else if (!strcmp (str, "a"))
  2181.       {
  2182. #if !defined (BLOCK_PROFILER) || !defined (FUNCTION_BLOCK_PROFILER)
  2183.         warning ("`-a' option (basic block profile) not supported");
  2184. #else
  2185.         profile_block_flag = 1;
  2186. #endif
  2187.       }
  2188.     else if (!strcmp (str, "gg"))
  2189.       write_symbols = GDB_DEBUG;
  2190. #ifdef DBX_DEBUGGING_INFO
  2191.     else if (!strcmp (str, "g0"))
  2192.       write_symbols = DBX_DEBUG;
  2193.     else if (!strcmp (str, "G0"))
  2194.       write_symbols = DBX_DEBUG;
  2195.     else if (!strcmp (str, "g"))
  2196.       {
  2197.         write_symbols = DBX_DEBUG;
  2198.         use_gdb_dbx_extensions = 1;
  2199.       }
  2200.     else if (!strcmp (str, "G"))
  2201.       {
  2202.         write_symbols = DBX_DEBUG;
  2203.         use_gdb_dbx_extensions = 1;
  2204.       }
  2205. #endif
  2206. #ifdef SDB_DEBUGGING_INFO
  2207.     else if (!strcmp (str, "g"))
  2208.       write_symbols = SDB_DEBUG;
  2209.     else if (!strcmp (str, "G"))
  2210.       write_symbols = SDB_DEBUG;
  2211.     else if (!strcmp (str, "g0"))
  2212.       write_symbols = SDB_DEBUG;
  2213.     else if (!strcmp (str, "G0"))
  2214.       write_symbols = SDB_DEBUG;
  2215. #endif
  2216. #ifndef MPW
  2217.     else if (!strcmp (str, "symout"))
  2218.       {
  2219.         if (write_symbols == NO_DEBUG)
  2220.           write_symbols = GDB_DEBUG;
  2221.         sym_file_name = argv[++i];
  2222.       }
  2223. #endif /* n MPW */
  2224.     else if (!strcmp (str, "o"))
  2225.       {
  2226.         asm_file_name = argv[++i];
  2227.       }
  2228.     else
  2229.       error ("Invalid option `%s'", argv[i]);
  2230.       }
  2231.     else
  2232.       filename = argv[i];
  2233.  
  2234. #ifdef OVERRIDE_OPTIONS
  2235.   /* Some machines may reject certain combinations of options.  */
  2236.   OVERRIDE_OPTIONS;
  2237. #endif
  2238.  
  2239.   /* Now that register usage is specified, convert it to HARD_REG_SETs.  */
  2240.   init_reg_sets_1 ();
  2241.  
  2242.   compile_file (filename);
  2243.  
  2244. #ifdef MPW
  2245.   /* Print out the memory allocation statistics we collected. */
  2246.   if (print_mem_flag)
  2247.     {
  2248.       fprintf (stderr,
  2249.            "%d bytes allocaed, %d bytes mallocked, %d bytes reallocked.\n",
  2250.            totalloca, totmalloc - totalloca, totrealloc);
  2251.       fflush (stderr);
  2252.     }
  2253. #ifdef PERFORMANCE
  2254.   /* Terminate any performance analysis. */
  2255.   PerfDump (ThePGlobals, "", true, 80);
  2256.   TermPerf (ThePGlobals);
  2257. #endif /* PERFORMANCE */
  2258. #else /* not MPW */
  2259. #ifndef USG
  2260. #ifndef VMS
  2261.   if (print_mem_flag)
  2262.     {
  2263.       extern char **environ;
  2264.       char *lim = (char *) sbrk (0);
  2265.  
  2266.       fprintf (stderr, "Data size %d.\n",
  2267.            (int) lim - (int) &environ);
  2268.       fflush (stderr);
  2269.  
  2270.       system ("ps v");
  2271.     }
  2272. #endif /* not VMS */
  2273. #endif /* not USG */
  2274. #endif /* MPW */
  2275.  
  2276.   if (errorcount)
  2277.     exit (FATAL_EXIT_CODE);
  2278.   if (sorrycount)
  2279.     exit (FATAL_EXIT_CODE);
  2280.   exit (SUCCESS_EXIT_CODE);
  2281.   return 34;
  2282. }
  2283.  
  2284. /* Decode -m switches.  */
  2285.  
  2286. /* Here is a table, controlled by the tm-...h file, listing each -m switch
  2287.    and which bits in `target_switches' it should set or clear.
  2288.    If VALUE is positive, it is bits to set.
  2289.    If VALUE is negative, -VALUE is bits to clear.
  2290.    (The sign bit is not used so there is no confusion.)  */
  2291.  
  2292. struct {char *name; int value;} target_switches []
  2293.   = TARGET_SWITCHES;
  2294.  
  2295. /* Decode the switch -mNAME.  */
  2296.  
  2297. void
  2298. set_target_switch (name)
  2299.      char *name;
  2300. {
  2301.   register int j;
  2302.   for (j = 0; j < sizeof target_switches / sizeof target_switches[0]; j++)
  2303.     if (!strcmp (target_switches[j].name, name))
  2304.       {
  2305.     if (target_switches[j].value < 0)
  2306.       target_flags &= ~-target_switches[j].value;
  2307.     else
  2308.       target_flags |= target_switches[j].value;
  2309.     return;
  2310.       }
  2311.   error ("Invalid option `%s'", name);
  2312. }
  2313.  
  2314. /* Print default target switches for -version.  */
  2315.  
  2316. void
  2317. print_target_switch_defaults ()
  2318. {
  2319.   register int j;
  2320.   register int mask = TARGET_DEFAULT;
  2321.   fprintf (stderr, "default target switches:");
  2322.   for (j = 0; j < sizeof target_switches / sizeof target_switches[0]; j++)
  2323.     if (target_switches[j].name[0] != '\0'
  2324.     && target_switches[j].value > 0
  2325.     && (target_switches[j].value & mask) == target_switches[j].value)
  2326.  
  2327.       fprintf (stderr, " -m%s", target_switches[j].name);
  2328.  
  2329.   fprintf (stderr, "\n");
  2330. }
  2331.